/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  --primary: #e85d32;
  --primary-light: #ff7a52;
  --secondary: #1a8a8a;
  --secondary-light: #25b5b5;
  --accent: #f0b429;
  --accent-dark: #d4a327;

  --background: #faf8f5;
  --foreground: #1e2a3b;
  --card: #ffffff;
  --muted: #f0ede8;
  --muted-foreground: #6b7280;
  --border: #d1d5db;
  --park-navy: #1e3a5f;
  --park-cream: #faf8f5;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --park-navy: #1a2a3a;
  --muted: #777;
  --primary: #ff6f3c;

  --radius: 0.75rem;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

/* Navbar */
/* Navbar */
.nav-bar {
  background-color: #ffffff;
  height: 70px; /* Fixed height so it doesn't jump around */
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 5%;
}

.nav-container {
  width: 100%;
  max-width: 1400px; /* Keeps everything from spreading too far */
  margin: 0 auto;
}
.img-fluid {
    max-height: 150px;
    margin-left: -30px;
  }
/* Logo Sizing */
.nav-logo-img {
  height: 65px; /* Perfect size for a 90px navbar */
  width: auto;
  object-fit: contain;
  display: block;
}


.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1rem 2rem;
}

.logo-navbar {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--foreground);
}

/* Nav Items */
.nav-items li {
  list-style: none;
}
.nav-items li a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}
.nav-items li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 50px;
  transition: 0.3s;
}
.nav-items li a:hover::after {
  width: 60%;
}
.nav-items li a:hover {
  color: var(--primary);
}

/* Desktop Navbar Buttons */

/* Account Button - Transparent */
.btn-navbar .btn-login {
  background: transparent; /* Transparent background */
  border: 2px solid var(--primary);
  color: var(--primary); /* Text color */
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  transition: 0.3s;
}

.btn-navbar .btn-login:hover {
  background: var(--primary); /* Fill on hover */
  color: #fff; /* White text on hover */
}

/* Buy Tickets Button - Remains Solid */
.btn-navbar .btn-ticket {
  background: var(--primary); /* Solid background */
  color: #fff; /* White text */
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  border: none;
  transition: 0.3s;
}

.btn-navbar .btn-ticket:hover {
  background: var(--primary-light); /* Slightly lighter on hover */
}

/* Hamburger */
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  background: var(--background);
  color: #000000;
  padding: 2rem;
  transition: 0.3s;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}
.mobile-menu ul {
  padding-top: 2rem;
  list-style: none;
  text-align: center;
}
.mobile-menu a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1050;
}

/* Show mobile menu */
.mobile-menu.active {
  left: 0;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modals */
.modal-content {
  border-radius: var(--radius);
}
.btn-ticket {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.5rem;
}
.btn-login {
  border-radius: var(--radius);
  padding: 0.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--park-navy);
  overflow: hidden;
  padding-top: 100px;
  color: var(--park-cream);
}

/* Hero Row */
.hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}

/* Background Circles */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float infinite alternate;
}

.hero-circle.circle1 {
  width: 250px;
  height: 250px;
  top: 5%;
  left: 10%;
  animation-duration: 8s;
}
.hero-circle.circle2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  animation-duration: 6s;
}
.hero-circle.circle3 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 20%;
  animation-duration: 10s;
}
.hero-circle.circle4 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  right: 5%;
  animation-duration: 5s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(15deg);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0px) rotate(-10deg);
    opacity: 0.6;
  }
}

/* Hero Content */
.hero-content {
  max-width: 600px;
  text-align: left;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s ease, transform 0.5s;
}

.hero-badge:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Heading */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s, opacity 0.5s;
}
.hero h1 span {
  color: var(--primary);
}

/* Subtitle & Description */
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.hero-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-hero {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
button.btn.btn-ticket.w-100:hover {
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-hero:hover {
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--park-cream);
  padding: 12px 28px;
  border-radius: 12px;
  transition: transform 0.3s, background 0.3s;
}
.btn-outline:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, color 0.3s;
}
.stat:hover {
  transform: translateY(-8px) scale(1.05);
}
.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
  transition: transform 0.3s, color 0.3s;
}
.stat:hover .stat-icon {
  transform: rotate(10deg);
  color: var(--primary-light);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.6);
}

/* Fade-up animation for elements */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}
.animate-fade-up.delay-1 {
  animation-delay: 0.2s;
}
.animate-fade-up.delay-2 {
  animation-delay: 0.4s;
}
.animate-fade-up.delay-3 {
  animation-delay: 0.6s;
}
.animate-fade-up.delay-4 {
  animation-delay: 0.8s;
}
.animate-fade-up.delay-5 {
  animation-delay: 1s;
}
.animate-fade-up.delay-6 {
  animation-delay: 1.2s;
}
.animate-fade-up.delay-7 {
  animation-delay: 1.4s;
}
.animate-fade-up.delay-8 {
  animation-delay: 1.6s;
}
.animate-fade-up.delay-9 {
  animation-delay: 1.8s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-row {
    flex-direction: column;
  }
  .hero-content {
    max-width: 100%;
  }
}

.entertainment-hero h1 {
  font-size: 2.5rem;
  color: var(--park-cream);
  margin-bottom: 1.5rem;
}

.entertainment-hero p {
  color: rgba(250, 248, 245, 0.7);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .entertainment-hero h1 {
    font-size: 3.5rem;
  }
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon.primary {
  background-color: var(--primary);
  color: white;
}

.section-icon.secondary {
  background-color: var(--secondary);
  color: white;
}

.section-icon.accent {
  background-color: var(--accent);
  color: var(--foreground);
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

/* Shows Section */
.shows-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.shows-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .shows-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.show-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.show-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.show-header {
  margin-bottom: 1rem;
}

.show-type {
  display: inline-block;
  background-color: rgba(232, 93, 50, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.show-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.show-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.show-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.show-details .detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.show-details .detail svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Characters Section */
.characters-section {
  padding: 4rem 0;
}

.characters-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .characters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .characters-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.character-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.character-card:hover {
  border-color: var(--primary);
}

.character-avatar {
  width: 80px;
  height: 80px;
  background-color: rgba(232, 93, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.character-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.character-card .location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.character-card .times {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
}

/* Seasonal Section */
.seasonal-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.seasonal-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .seasonal-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.seasonal-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.seasonal-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.event-date {
  display: inline-block;
  background-color: rgba(240, 180, 41, 0.2);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.seasonal-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.seasonal-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Tip Banner */
.tip-banner {
  background-color: var(--secondary);
  padding: 3rem 0;
}

.tip-banner p {
  text-align: center;
  color: var(--secondary-foreground);
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background-color: var(--park-navy);
  color: var(--park-cream);
  padding: 70px 0 30px;
  position: relative;
}

/* Grid stays clean */
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: flex-start;
}

/* ---------- LOGO FIX ---------- */
.footer-brand {
    position: relative;
}

  .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 60px;
  }

.footer-logo img {
    position: absolute;
    margin: -30px;
    left: -10px;
    max-height: 150px;
    display: block;
    object-fit: contain;
    top: -20px;
    margin-bottom: 15px;
}

/* ---------- SOCIAL ICONS ---------- */
.footer-social {
  display: flex;
  gap: 30px;
}

.footer-social a {
  color: #ffffff;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

/* ---------- HEADINGS ---------- */
.footer h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

/* ---------- LINKS ---------- */
.footer-links {
  list-style: none;
  margin: 0;
  padding-left: 70px;
}
.footer-h41{
  margin-left: 70px;
}
.footer-h42{
  margin-left: 70px;
}
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* ---------- HIGHLIGHTS SECTION ---------- */
.footer-highlights ul {
  list-style: none;
  padding-right: 40px;
}

.footer-highlights li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cbd5e1;
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links a {
  color: #cbd5e1;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ---------- MOBILE FOOTER FIX ---------- */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 8px;
  }
}
.entertainment-section {
  padding: 80px 20px;
  background: #fff6f2;
  font-family: 'Nunito', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-family: 'Fredoka', sans-serif;
}

.section-header p {
  color: #555;
  max-width: 600px;
  margin: 10px auto 0;
}

.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.entertainment-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.entertainment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.entertainment-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.card-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.card-content a {
  display: inline-block;
  padding: 8px 18px;
  background: #e85d32;
  color: #fff;
  border-radius: 25px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.card-content a:hover {
  background: #c74721;
}
.entertainment-alt {
  padding: 90px 20px;
  background-color: var(--park-navy);
  color: #fff;
}

.alt-header {
  text-align: center;
  margin-bottom: 60px;
}

.alt-header span {
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.85;
}

.alt-header h2 {
  font-size: 2.6rem;
  margin-top: 10px;
  font-family: 'Fredoka', sans-serif;
}

.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.alt-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.4s ease, background 0.4s ease;
}

.alt-item:hover {
  transform: translateY(-12px) scale(1.03);
  background: rgba(255, 255, 255, 0.25);
}

.alt-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

.alt-item h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.alt-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}
/* =====================================================
   GLOBAL SAFETY FIX
===================================================== */
html, body {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 992px) {
  .nav-bar {
    padding: 0.8rem 1rem;
  }

  .nav-logo-img {
    height: 55px;
  }
}

@media (max-width: 768px) {
  .nav-items {
    display: none;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .shows-grid,
  .characters-grid,
  .seasonal-grid,
  .entertainment-grid,
  .alt-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .entertainment-card img {
    height: 160px;
  }

  .alt-item {
    padding: 28px 18px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* REMOVE LEFT OFFSETS */
  .footer-links,
  .footer-h41,
  .footer-h42 {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  /* FIX ABSOLUTE LOGO ISSUE */
  .footer-logo {
    position: relative;
    justify-content: center;
    margin-bottom: 30px;
  }

  .footer-logo img {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: auto;
    max-height: 120px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-highlights ul {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links a {
    margin: 0 6px;
  }
}
@media (max-width: 360px) {
  .btn-hero,
  .btn-outline {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  .mobile-menu ul {
    width: 100%;
    padding-right: 30px;
  }
  .hero-row {
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 110px 15px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-icon {
    font-size: 1.6rem;
  }

  /* Reduce background circle size */
  .hero-circle {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.1rem;
  }

  .entertainment-section,
  .entertainment-alt {
    padding: 70px 15px;
  }

  .entertainment-card img {
    height: 170px;
  }

  .alt-header h2 {
    font-size: 2.2rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .entertainment-grid,
  .alt-grid {
    grid-template-columns: 1fr;
  }

  .entertainment-card img {
    height: 150px;
  }

  .card-content h3 {
    font-size: 1.15rem;
  }

  .alt-item {
    padding: 30px 20px;
  }

  .alt-icon {
    font-size: 2.4rem;
  }

  .alt-item h3 {
    font-size: 1.2rem;
  }

  .alt-item p {
    font-size: 0.9rem;
  }
}
.mobile-menu.active ~ .hamburger,
.mobile-menu.active + .hamburger,
.hamburger.hide {
  display: none !important;
}
@media (max-width: 320px) {


  section {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.45rem !important; }
  h3 { font-size: 1.2rem !important; }
  p  { font-size: 0.9rem !important; }

  /* ===== NAVBAR ===== */
  .nav-bar {
    height: 56px;
    padding: 0 0.6rem;
  }

  .nav-logo-img {
    height: 36px;
    max-width: 115px;
  }

  .hamburger {
    gap: 3px;
    z-index: 1400;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    width: 100%;
    left: -100%;
    padding: 1rem;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu ul {
    padding-top: 1rem;
  }

  .mobile-menu li {
    margin-bottom: 0.9rem;
  }

  .mobile-menu a {
    font-size: 0.95rem;
  }

  /* FORCE hide hamburger */
  .hamburger.hide {
    display: none !important;
  }

  /* ===== HERO ===== */
  .hero {
    padding-top: 110px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.9rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-hero,
  .btn-outline {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px 0;
  }

  /* ===== HERO STATS ===== */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 0.8rem;
    margin-top: 1.8rem;
  }

  .stat-icon {
    font-size: 1.6rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* ===== CARDS ===== */
  .zone-card,
  .restaurant-card,
  .entertainment-card,
  .testimonial-card,
  .info-card {
    padding: 1.25rem 1rem;
  }

  /* ===== GALLERY ===== */
  .gallery-item {
    height: 160px;
  }

  /* ===== CTA / TICKETS ===== */
  .tickets-cta {
    padding: 2.5rem 1rem;
  }

  .ticket-card {
    width: 100%;
  }

  /* ===== BUTTON FORCE FULL WIDTH ===== */
  .buy-ticket-wrapper,
  .ticket-btn-wrapper,
  .hero-buttons,
  .cta-buttons,
  .btn-buy,
  .btn-ticket,
  .buy-ticket,
  button.buy-ticket {
    width: 100%;
    display: block;
    text-align: center;
    padding: 13px 0;
  }

  /* ===== FOOTER ===== */
  .footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 auto;
    max-height: 120px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom-links a {
    margin: 0 4px;
    font-size: 0.8rem;
  }
}
@media (max-width: 992px) {

  /* MOBILE MENU CONTAINER */
  .mobile-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: -100vw !important;
    right: 0 !important;
    margin: 0 !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
  }

  /* WHEN MENU IS OPEN */
  .mobile-menu.active {
    left: 0 !important;
  }

  /* REMOVE ANY TRANSFORM LIMITS */
  .mobile-menu,
  .mobile-menu.active {
    transform: none !important;
  }
}
@media (max-width: 360px) {
  .mobile-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: -100vw !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 320px) {
  .mobile-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: -100vw !important;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

@media (max-width: 992px) {

.img-fluid {
    max-height: 150px;
    position: absolute;
    top: -37px;
    left: -6px;
}
}
@media (max-width: 360px) {

  /* GLOBAL TEXT */
  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  h1 { font-size: 1.9rem !important; }
  h2 { font-size: 1.6rem !important; }
  h3 { font-size: 1.3rem !important; }
  p  { font-size: 0.95rem !important; }

  /* NAVBAR */
  .nav-bar {
    height: 60px;
    padding: 0 0.75rem;
  }

  .nav-logo-img {
    height: 40px;
    max-width: 130px;
  }

  .hamburger {
    gap: 4px;
    z-index: 1300;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  /* MOBILE MENU */
  .mobile-menu {
    width: 100%;
    left: -100%;
    padding: 1.25rem;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu ul {
    padding-top: 1.25rem;
  }

  .mobile-menu li {
    margin-bottom: 1rem;
  }

  .mobile-menu a {
    font-size: 1rem;
  }

  .hamburger.hide {
    display: none !important;
  }

  /* HERO */
  .hero {
    padding-top: 120px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }


  .btn-hero,
  .btn-outline {
    width: 100%;
    margin-top: 10px;
  }

  /* STATS */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    justify-items: center;
    margin-top: 2rem;
  }

  .stat {
    text-align: center;
  }

  .stat-icon {
    font-size: 1.8rem;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* BUTTON FULL WIDTH */
  .buy-ticket-wrapper,
  .ticket-btn-wrapper,
  .hero-buttons,
  .cta-buttons,
  .btn-buy,
  .btn-ticket,
  .buy-ticket,
  button.buy-ticket {
    width: 100%;
    display: block;
    padding: 14px 0;
    text-align: center;
  }

  /* FOOTER */
  .footer {
    text-align: center;
  }

  .footer-logo img {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 auto;
    max-height: 140px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}